home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / stdio / ftell.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-21  |  214 b   |  12 lines

  1. #include <stdio.h>
  2.  
  3. long ftell(FILE *f)
  4. {
  5.     long offset;
  6.     offset=Seek(f->filehandle,0L,0L);
  7.     if(f->flags&_READ) offset-=f->count;
  8.     if(f->flags&_WRITE) offset+=f->bufsize-f->count;
  9.     return(offset);
  10. }
  11.  
  12.